home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / dc.postinst < prev    next >
Text File  |  2009-09-20  |  662b  |  31 lines

  1. #!/bin/sh
  2. #
  3. # This is the postinst script for the Debian GNU/Linux dc package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6. # Previous versions written by Bill Mitchell, Austin Donnelly and James Troup
  7.  
  8. set -e
  9.  
  10. # Automatically added by dh_installmenu
  11. if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
  12.     update-menus
  13. fi
  14. # End automatically added section
  15.  
  16.  
  17. case "$1" in
  18.     configure|abort-remove|abort-deconfigure)
  19.     s="General commands"
  20.     install-info --quiet --section "$s" "$s" /usr/share/info/dc.info.gz
  21.     ;;
  22.  
  23.     abort-upgrade)
  24.         # Nothing to undo
  25.     ;;
  26.  
  27.     *)
  28.     echo "postinst called with unknown argument \`$1'" >&2
  29.     ;;
  30. esac
  31.